-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vmcheck: Honor TESTS= #692
Conversation
tests/vmcheck/multitest.py
Outdated
matched_tests = [] | ||
unmatched_tests = [] | ||
for test in tests: | ||
testbn = os.path.basename(test) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use _strip_test()
for this? With test.sh
, the actual syntax for TESTS
excludes the leading "test-" and trailing ".sh" (just like the test.sh
in projectatomic/atomic). We should probably accept the same syntax here too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, done ⬇️
Whoops, good catch! |
I think for the local testing scenario, it probably makes more sense to use |
Minor regression from the multitest reimplementation, but it's really handy for the "debug and fix a test" case.
803e5da
to
12b4000
Compare
☀️ Test successful - status-atomicjenkins |
Minor regression from the multitest reimplementation, but it's really handy for
the "debug and fix a test" case.